home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / vector.lha / vector / adjoint.h < prev    next >
C/C++ Source or Header  |  1991-11-23  |  280b  |  14 lines

  1. #ifndef _ADJOINT_H
  2. #define _ADJOINT_H
  3.  
  4. #ifndef _HMATRIX_H
  5. #include "hmatrix.h"
  6. #endif /*_HMATRIX_H*/
  7.  
  8. extern "C" {
  9.     float inverse(const HMatrix &in, HMatrix &out);
  10.     float adjoint(const HMatrix &in, HMatrix &out);
  11.     float det4x4(const HMatrix &m);
  12. };
  13. #endif /*_ADJOINT_H*/
  14.